home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs_src_gs.lha / gs5.03 / szlibd.c < prev    next >
C/C++ Source or Header  |  1997-01-18  |  3KB  |  95 lines

  1. /* Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* szlibd.c */
  20. /* zlib decoding (decompression) filter stream */
  21. #include "std.h"
  22. #include "gsmemory.h"
  23. #include "strimpl.h"
  24. #include "szlibx.h"
  25.  
  26. #define ss ((stream_zlib_state *)st)
  27. #define szs (&ss->zstate)
  28.  
  29. /* Initialize the filter. */
  30. private int
  31. s_zlibD_init(stream_state *st)
  32. {    szs->zalloc = (alloc_func)s_zlib_alloc;
  33.     szs->zfree = (free_func)s_zlib_free;
  34.     szs->opaque = (voidpf)&gs_memory_default;
  35.     if ( inflateInit2(szs,
  36.               (ss->no_wrapper ? -ss->windowBits : ss->windowBits))
  37.          != Z_OK
  38.        )
  39.       return ERRC;        /****** WRONG ******/
  40.     return 0;
  41. }
  42.  
  43. /* Reinitialize the filter. */
  44. private int
  45. s_zlibD_reset(stream_state *st)
  46. {    if ( inflateReset(szs) != Z_OK )
  47.       return ERRC;        /****** WRONG ******/
  48.     return 0;
  49. }
  50.  
  51. /* Process a buffer */
  52. private int
  53. s_zlibD_process(stream_state *st, stream_cursor_read *pr,
  54.   stream_cursor_write *pw, bool ignore_last)
  55. {    const byte *p = pr->ptr;
  56.     int status;
  57.  
  58.     /* Detect no input or full output so that we don't get */
  59.     /* a Z_BUF_ERROR return. */
  60.     if ( pw->ptr == pw->limit )
  61.       return 1;
  62.     if ( pr->ptr == pr->limit )
  63.       return 0;
  64.     szs->next_in = (Bytef *)p + 1;
  65.     szs->avail_in = pr->limit - p;
  66.     szs->next_out = pw->ptr + 1;
  67.     szs->avail_out = pw->limit - pw->ptr;
  68.     status = inflate(szs, Z_PARTIAL_FLUSH);
  69.     pr->ptr = szs->next_in - 1;
  70.     pw->ptr = szs->next_out - 1;
  71.     switch ( status )
  72.       {
  73.       case Z_OK:
  74.         return (pw->ptr == pw->limit ? 1 : pr->ptr > p ? 0 : 1);
  75.       case Z_STREAM_END:
  76.         return EOFC;
  77.       default:
  78.         return ERRC;
  79.       }
  80. }
  81.  
  82. /* Release the stream */
  83. private void
  84. s_zlibD_release(stream_state *st)
  85. {    inflateEnd(szs);
  86. }
  87.  
  88. /* Stream template */
  89. const stream_template s_zlibD_template =
  90. {    &st_zlib_state, s_zlibD_init, s_zlibD_process, 1, 1, s_zlibD_release,
  91.     s_zlib_set_defaults, s_zlibD_reset
  92. };
  93.  
  94. #undef ss
  95.